home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / t3_1 / nexttsrc.lha / nexttsources / nexttsystem / next_start_t.s < prev    next >
Text File  |  1993-07-23  |  491b  |  21 lines

  1.         .globl big_bang
  2.         .globl _start_t
  3.         .globl interrupt_dispatcher
  4.         .text
  5.  
  6. _start_t:
  7.         lea interrupt_handler,a0
  8.         movl a0,d0
  9.         lea big_bang,a0     
  10.         movl a0@(-2),a5
  11.         jmp  a5@
  12. interrupt_handler:
  13.         movl sp@(4),d0
  14.         movl sp@(12),a1
  15.         moveml d2/d3/d4/d5/d6/d7/a2/a3/a4/a5/a6,sp@-
  16.         lea interrupt_dispatcher,a0
  17.         movl a0@(-2),a5
  18.         jsr a5@
  19.         moveml sp@+,d2/d3/d4/d5/d6/d7/a2/a3/a4/a5/a6
  20.         rts
  21.